home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / misc_src / knowhow4 / ask_hot.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-01  |  470 b   |  16 lines

  1. #ifndef __ASK_KEY_H_
  2. #define __ASK_KEY_H_
  3. /* If program supports user-defined scripts and macroses, we need
  4.     tool for querry for key, which should be linked with current
  5.     macros.
  6. */
  7. #include <stdio.h>
  8.  
  9. extern int ask_save();
  10.  
  11. int ask_hot_key();    // shows the window with message and gets a key
  12.  
  13. void add_macros(char* command, FILE* tempPtr);  // add macros to macros file
  14. int ask_exit();       // "Exit application: (Y / N) ?"
  15.  
  16. #endif __ASK_KEY_H_